func github.com/klauspost/compress/zstd.matchLen

7 uses

	github.com/klauspost/compress/zstd (current package)
		enc_base.go#L128: 	return int32(matchLen(src[s:], src[t:]))
		enc_best.go#L144: 		ml := matchLen(src[1:], src)
		enc_better.go#L111: 		ml := matchLen(src[1:], src)
		enc_dfast.go#L448: 					length := 4 + int32(matchLen(src[s+4+repOff:], src[repIndex+4:]))
		enc_dfast.go#L567: 		l := int32(matchLen(src[s+4:], src[t+4:])) + 4
		enc_dfast.go#L636: 			l := 4 + int32(matchLen(src[s+4:], src[o2+4:]))
		matchlen_amd64.go#L15: func matchLen(a []byte, b []byte) int